home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gp_itbc.c < prev    next >
C/C++ Source or Header  |  1995-09-12  |  6KB  |  213 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_itbc.c */
  20. /* Intel processor, Turbo/Borland C-specific routines for Ghostscript */
  21. #include "dos_.h"
  22. #include <fcntl.h>
  23. #include <io.h>
  24. #include <signal.h>
  25. #include "ctype_.h"                /* for tolower */
  26. #include "string_.h"
  27. #include "gx.h"
  28. #include "gp.h"
  29. #ifdef __OVERLAY__
  30. #  include "overlay.h"
  31. #endif
  32.  
  33. /* Library routines not declared in a standard header */
  34. extern char *getenv(P1(const char *));
  35.  
  36. /* Define the size of the C stack. */
  37. unsigned _stklen = 8000;        /* default is 4096, we need more */
  38.  
  39. /* Define the size of the overlay buffer, if relevant. */
  40. #ifdef __OVERLAY__
  41. unsigned _ovrbuffer = (1024L * OVLBUFK) / 16;
  42. #endif
  43.  
  44. /* Forward declarations */
  45. private void handle_FPE(P3(int, int, int *));
  46.  
  47. /* Do platform-dependent initialization. */
  48. #if CPU_TYPE > 86
  49. /* Internal routine to set flags and read them back. */
  50. /* We use __emit__ so we don't require an assembler. */
  51. private int
  52. push_pop_flags(unsigned flags)
  53. {    __emit__(0x8b, 0x46, 6);    /* mov ax,flags */
  54.     __emit__(0x50, 0x9d);        /* push ax; popf */
  55.     __emit__(0x9c, 0x58);        /* pushf; pop ax */
  56. }
  57. #endif
  58. void
  59. gp_init(void)
  60. {    /*
  61.      * Detect the processor type using the following algorithms:
  62.      *    The 8088/8086 truncate shift counts mod 32,
  63.      *      the 80186 and up do not.
  64.      *    The 80186 and below fix FLAGS bits 15-12 to 1,
  65.      *      the 80286 and up do not.
  66.      *    The 80386 allows setting FLAGS bits 14-12,
  67.      *      the 80286 and below do not.
  68.      * We currently can't tell an 80386 from an 80486.
  69.      * Note that this algorithm will identify an 80386
  70.      *   running in Virtual 8086 mode as an 80386.
  71.      *   This is acceptable, because Ghostscript doesn't actually
  72.      *   use 80286 or 80386 addressing modes, only the additional
  73.      *   instructions available on these processors.
  74.      * (This algorithm is derived from the Intel manuals.)
  75.      */
  76. #if CPU_TYPE > 86
  77.     /* We have to be careful not to turn interrupts off! */
  78.     int result, type;
  79.     result = push_pop_flags(0x202);
  80.     if ( (result & 0xf000) == 0xf000 )
  81.        {    /* CPU is an 8088/8086/80186 */
  82.            {    int shc = 33;    /* force shift by variable */
  83.             result = 0xffff << shc;
  84.            }
  85.         type = (result == 0 ? 186 : 86);
  86.        }
  87.     else
  88.        {    /* CPU is an 80286/80386/... */
  89.         result = push_pop_flags(0x7202);
  90.         type = ((result & 0x7000) == 0 ? 286 : 386);
  91.        }
  92.     /* A 486 is the same as a 386. */
  93. #define CPU_EQUIV (CPU_TYPE > 386 ? 386 : CPU_TYPE)
  94.     if ( type < CPU_EQUIV )
  95.        {    eprintf1("This executable requires an 80%d or higher.\n",
  96.              CPU_EQUIV);
  97.         exit(1);
  98.        }
  99. #endif
  100.  
  101. #ifdef __OVERLAY__
  102.     /* Initialize the overlay machinery. */
  103.        {    int code;
  104. #  ifdef OVEMS
  105.         code = _OvrInitEms(OVEMS_HANDLE, OVEMS_FIRST, OVEMS_PAGES);
  106.         if ( code )
  107.             eprintf("Attempt to use EMS memory for overlays failed.\n");
  108. #  endif
  109. #  ifdef OVEXT
  110.         code = _OvrInitExt(OVEXT_START, OVEXT_LENGTH);
  111.         if ( code )
  112.             eprintf("Attempt to use extended memory for overlays failed.\n");
  113. #  endif
  114.        }
  115. #endif
  116.     /* Set up the handler for numeric exceptions. */
  117.     signal(SIGFPE, handle_FPE);
  118.     gp_init_console();
  119. }
  120.  
  121. /* Trap numeric exceptions.  Someday we will do something */
  122. /* more appropriate with these. */
  123. private void
  124. handle_FPE(int sig, int subcode, int *regs)
  125. {    unsigned char far *ip = MK_PTR(regs[10], regs[9]);
  126.     eprintf1("Numeric exception %d:\n", subcode);
  127.     fprintf(estderr,
  128. "AX=%04x  BX=%04x  CX=%04x  DX=%04x  SI=%04x  DI=%04x  BP=%04x\n",
  129.         regs[8], regs[7], regs[6], regs[5], regs[2], regs[1], regs[0]);
  130.     fprintf(estderr,
  131. "DS=%04x  ES=%04x  CS:IP=%04x:%04x",
  132.         regs[3], regs[4], regs[10], regs[9]);
  133.     fflush(estderr);        /* in case of trap */
  134.     fprintf(estderr, " --> %02x %02x %02x %02x %02x >> %02x %02x %02x %02x %02x\n",
  135.         ip[-5], ip[-4], ip[-3], ip[-2], ip[-1],
  136.         ip[0], ip[1], ip[2], ip[3], ip[4]);
  137.     exit(1);
  138. }
  139.  
  140. /* Do platform-dependent cleanup. */
  141. void
  142. gp_exit(int exit_status, int code)
  143. {
  144. }
  145.  
  146. /* Exit the program. */
  147. void
  148. gp_do_exit(int exit_status)
  149. {    exit(exit_status);
  150. }
  151.  
  152. /* ------ Printer accessing ------ */
  153.  
  154. /* Open a connection to a printer.  A null file name means use the */
  155. /* standard printer connected to the machine, if any. */
  156. /* Return NULL if the connection could not be opened. */
  157. extern void gp_set_printer_binary(P2(int, int));
  158. FILE *
  159. gp_open_printer(char *fname, int binary_mode)
  160. {    FILE *pfile;
  161.     if ( strlen(fname) == 0 || !strcmp(fname, "PRN") )
  162.         pfile = stdprn;
  163.     else
  164.     {    pfile = fopen(fname, (binary_mode ? "wb" : "w"));
  165.         if ( pfile == NULL )
  166.             return NULL;
  167.     }
  168.     gp_set_printer_binary(fileno(pfile), binary_mode);
  169.     return pfile;
  170. }
  171.  
  172. /* Close the connection to the printer. */
  173. void
  174. gp_close_printer(FILE *pfile, const char *fname)
  175. {    if ( pfile != stdprn )
  176.         fclose(pfile);
  177. }
  178.  
  179. /* ------ File naming and accessing ------ */
  180.  
  181. /* Create and open a scratch file with a given name prefix. */
  182. /* Write the actual file name at fname. */
  183. FILE *
  184. gp_open_scratch_file(const char *prefix, char *fname, const char *mode)
  185. {    char *temp;
  186.     if ( (temp = getenv("TEMP")) == NULL )
  187.         *fname = 0;
  188.     else
  189.     {    char last = '\\';
  190.         strcpy(fname, temp);
  191.         /* Prevent X's in path from being converted by mktemp. */
  192.         for ( temp = fname; *temp; temp++ )
  193.             *temp = last = tolower(*temp);
  194.         switch ( last )
  195.         {
  196.         default:
  197.             strcat(fname, "\\");
  198.         case ':': case '\\':
  199.             ;
  200.         }
  201.     }
  202.     strcat(fname, prefix);
  203.     strcat(fname, "XXXXXX");
  204.     mktemp(fname);
  205.     return fopen(fname, mode);
  206. }
  207.  
  208. /* Open a file with the given name, as a stream of uninterpreted bytes. */
  209. FILE *
  210. gp_fopen(const char *fname, const char *mode)
  211. {    return fopen(fname, mode);
  212. }
  213.